home *** CD-ROM | disk | FTP | other *** search
- # Login.cmd for Beckmeyer Development "BDT"
- #
- # initialize modem
- #
- # The actual string you send your modem may vary.
- # Each modem is different so no string is included here.
- # In general, configure the modem for the fastest possible
- # COM port speed, with hardware flow control and carrier
- # detection.
- #
- output at\13
- input 10 OK\n
- #
- # send phone number
- #
- output atdt5305086\13
- #
- # now we are connected.
- #
- input 30 CONNECT
- #
- # wait till it's safe to send because some modem's hang up
- # if you transmit during the connection phase
- #
- wait 30 dcd
- #
- # now prod the terminal server
- #
- output \13
- #
- # wait for the login prompt
- #
- input 30 ogin:
- output <Place Router Login Here>\13
- #
- # and the password
- #
- input 30 word:
- output <Place Router Password Here>\13
- #
- # now we are finished.
- #
-
-